From: Po Lu Date: Fri, 6 May 2022 04:11:38 +0000 (+0000) Subject: Fix more problems with display of composite glyph strings on Haiku X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~2370^2~31 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8fe3d46d35b7cb876c2b50048eb709c086c5d45a;p=emacs.git Fix more problems with display of composite glyph strings on Haiku * src/haikuterm.c (haiku_draw_composite_glyph_string_foreground): Fix pen size of placeholder rectangle. --- diff --git a/src/haikuterm.c b/src/haikuterm.c index 341288133e8..b903e017e40 100644 --- a/src/haikuterm.c +++ b/src/haikuterm.c @@ -1349,6 +1349,8 @@ haiku_draw_composite_glyph_string_foreground (struct glyph_string *s) BView_SetHighColor (view, FRAME_OUTPUT_DATA (s->f)->cursor_fg); else BView_SetHighColor (view, s->face->foreground); + + BView_SetPenSize (view, 1); BView_StrokeRectangle (view, s->x, s->y, s->width, s->height); }